/* Common */ jQuery(function($){ /* footer */ $("nav .btn_nav.open").click(function() { $(this).parent().addClass("on"); }); $("nav .btn_nav.closed").click(function() { $(this).parent().parent().removeClass("on"); }) }); /* Top Button */ $(document).ready(function () { //Scroll Top Button Fade In/Out $(window).scroll(function () { var scrollPosition = $(this).scrollTop(); if (scrollPosition > 50) { $('.top-btn').fadeIn(); } else { $('.top-btn').fadeOut(); } }); // Scroll to top $('.top-btn').click(function () { $('body,html').animate({ scrollTop: 0 }, 500); }); $(".top-btn").hover(function(){ $(this).css("background-color","#ff8a00"); }, function(){ $(this).css("background-color","#484848"); scroll_top() }); }); //top btn 클릭 이벤트 function topScrollEvent(){ $('.btn_top').click(function(){ $( 'html, body' ).animate({"scrollTop": "0"},300); }); };